using System.Threading.Tasks; using Plugins.Countly.Helpers; namespace Plugins.Countly.Services { public interface IStarRatingCountlyService { /// /// Sends app rating to the server. /// /// /// /// Rating should be from 1 to 5 /// Task ReportStarRatingAsync(string platform, string appVersion, int rating); } }